net/http.http2stream.writeDeadline (field)
10 uses
net/http (current package)
h2_bundle.go#L4467: writeDeadline *time.Timer // nil if unused
h2_bundle.go#L5454: if st.writeDeadline != nil {
h2_bundle.go#L5455: st.writeDeadline.Stop()
h2_bundle.go#L5945: st.writeDeadline = time.AfterFunc(sc.hs.WriteTimeout, st.onWriteTimeout)
h2_bundle.go#L6626: if st.writeDeadline != nil {
h2_bundle.go#L6627: if !st.writeDeadline.Stop() {
h2_bundle.go#L6633: st.writeDeadline = nil
h2_bundle.go#L6634: } else if st.writeDeadline == nil {
h2_bundle.go#L6635: st.writeDeadline = time.AfterFunc(deadline.Sub(time.Now()), st.onWriteTimeout)
h2_bundle.go#L6637: st.writeDeadline.Reset(deadline.Sub(time.Now()))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |